home *** CD-ROM | disk | FTP | other *** search
/ Know Your Baseball - The Greatest Player Resource / Know Your Baseball - Greatest Player.iso / Baseball / Director / KTGCST.CST / 00100_Script_New offon script < prev   
Text File  |  1998-09-21  |  558b  |  26 lines

  1. global thisrollover,gbuttonstate,lastrollover
  2. on buttonon thisrollover,below,above
  3.   set work = []
  4.   append work,thisrollover
  5.   append work, below
  6.   append work,above
  7.   repeat with x in work
  8.     set the blend of sprite(x) = 100  
  9.   end repeat
  10.   updateStage
  11. end
  12.  
  13.  
  14.  
  15. on buttonoff lastrollover,below,above
  16.   set work = []
  17.   append work,thisrollover
  18.   append work, below
  19.   append work,above
  20.   if getat(gbuttonstate,getat(work,1)) > 0 then exit 
  21.      repeat with x in work
  22.     set the blend of sprite(x) = 100  
  23.   end repeat
  24.   end if 
  25. end
  26.